home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Magazine Collection 2001
/
Delphi Magazine Collection 20001 (2001).iso
/
DISKS
/
Issue61
/
Actions
/
TabActnsReg.pas
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
2000-05-26
|
215 b
|
18 lines
unit TabActnsReg;
interface
procedure Register;
implementation
uses
ActnList, TabActns;
procedure Register;
begin
RegisterActions('Tab', [TNextTabAction, TPriorTabAction], nil)
end;
end.